use rpath defaults
authorJorge Israel Peña <jorge.israel.p@gmail.com>
Mon, 20 Oct 2014 03:36:19 +0000 (20:36 -0700)
committerJorge Israel Peña <jorge.israel.p@gmail.com>
Mon, 20 Oct 2014 03:36:19 +0000 (20:36 -0700)
src/doc/manifest.md

index bb00c389af78e84ac6a7bab59c98ad3778514b60..8a55a254ec32be911bbbcacbcf37fd4ab5661758 100644 (file)
@@ -108,7 +108,7 @@ along with the defaults for each profile.
 [profile.dev]
 opt-level = 0  # Controls the --opt-level the compiler builds with
 debug = true   # Controls whether the compiler passes -g or `--cfg ndebug`
-rpath = true   # Controls whether the compiler passes `-C rpath`
+rpath = false   # Controls whether the compiler passes `-C rpath`
 
 # The release profile, used for `cargo build --release`
 [profile.release]
@@ -120,7 +120,7 @@ rpath = false
 [profile.test]
 opt-level = 0
 debug = true
-rpath = true
+rpath = false
 
 # The benchmarking profile, used for `cargo bench`
 [profile.bench]
@@ -132,6 +132,7 @@ rpath = false
 [profile.doc]
 opt-level = 0
 debug = true
+rpath = false
 ```
 
 # The `[features]` Section